home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
-
- <!--
- /*//////////////////////////////////////////////////////////////////////
- Filename: wsn-rules2.xsl
- Company Name: Computer Associates International, Inc.
- Legal Copyright: Copyright (c) Computer Associates International, Inc.
- Author: Marek Matus
- Product: Tiny Firewall
- Description: Windows Security: lists all rules by object type
- ///////////////////////////////////////////////////////////////////////*/
- -->
-
- <!--//////////////////////////////////////////////////////////////////////////////////
- // Parameters (passed as <root-node>/Params/Param node with @name and data as a value):
- // ot => object type string, e.g. Registry
- // at_XXX=<value of AT_YYY> => e.g. for AT_KEY_READ => at_KeyRead=25
- // priority => high, low or normal (default)
- ///////////////////////////////////////////////////////////////////////////////////-->
-
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
-
- <xsl:output method="html"/>
-
- <xsl:variable name="INCLUDED_FILES">../common/tools.xsl</xsl:variable>
-
- <!--Parameters to be passed to the XSLT transformation-->
- <xsl:variable name="ot" select="//Params/Param[@name='ot']"/>
- <xsl:variable name="priority" select="//Params/Param[@name='priority']"/>
-
- <xsl:template match="/">
-
- <xsl:text>new Array(</xsl:text>
-
- <xsl:for-each select="/SecDb/RuleList/Rule[($ot = @ot) and (not($priority) or ($priority = @priority))]">
- <xsl:if test="position()>1">
- <xsl:text>,</xsl:text>
- </xsl:if>
-
- <xsl:apply-templates select="."/>
-
- </xsl:for-each>
-
- <xsl:text>)</xsl:text>
- </xsl:template>
-
- <!-- Rule template - called from the \ template -->
- <xsl:template match="Rule">
-
- <xsl:text>new Array(</xsl:text>
-
- <!-- id of rule -->
- <xsl:text>'</xsl:text>
- <xsl:value-of select="@id"/>
- <xsl:text>'</xsl:text>
-
- <!-- enable/disable -->
- <xsl:text>,'</xsl:text>
- <xsl:value-of select="@disabled"/>
- <xsl:text>'</xsl:text>
-
- <!-- description -->
- <xsl:text>,'</xsl:text>
- <xsl:call-template name="printJSText">
- <xsl:with-param name="string" select="@desc"/>
- </xsl:call-template>
- <xsl:text>'</xsl:text>
-
- <!-- object and obj_id (2 items) -->
- <xsl:choose>
- <xsl:when test="not($ot = 'SystemPrivilege')">
- <xsl:text>,'</xsl:text>
- <xsl:call-template name="printJSText">
- <xsl:with-param name="string" select="Object"/>
- </xsl:call-template>
- <xsl:text>'</xsl:text>
-
- <xsl:text>,'</xsl:text>
- <xsl:call-template name="printJSText">
- <xsl:with-param name="string" select="@obj_id"/>
- </xsl:call-template>
- <xsl:text>'</xsl:text>
- </xsl:when>
- <xsl:otherwise>
- <xsl:text>,'',''</xsl:text>
- </xsl:otherwise>
- </xsl:choose>
-
- <!-- account -->
- <xsl:text>,'</xsl:text>
- <xsl:value-of select="@account"/>
- <xsl:text>'</xsl:text>
-
- <!-- app -->
- <xsl:text>,'</xsl:text>
- <xsl:call-template name="printJSText">
- <xsl:with-param name="string" select="@app"/>
- </xsl:call-template>
- <xsl:text>'</xsl:text>
-
- <!-- app_id -->
- <xsl:text>,'</xsl:text>
- <xsl:call-template name="printJSText">
- <xsl:with-param name="string" select="@app_id"/>
- </xsl:call-template>
- <xsl:text>'</xsl:text>
-
- <!-- access -->
- <xsl:text>,'</xsl:text>
-
- <xsl:for-each select="AccessDesc">
- <xsl:if test="position()>1">
- <xsl:text>|</xsl:text>
- </xsl:if>
-
- <xsl:value-of select="@at"/>
- <xsl:text>-</xsl:text>
- <xsl:value-of select="@ar"/>
- <xsl:text>-</xsl:text>
- <xsl:value-of select="@al"/>
- </xsl:for-each>
-
- <xsl:text>'</xsl:text>
-
- <!-- time of day -->
- <xsl:text>,'</xsl:text>
- <xsl:call-template name="printJSText">
- <xsl:with-param name="string" select="@timeofday"/>
- </xsl:call-template>
- <xsl:text>'</xsl:text>
-
- <!-- time of day id -->
- <xsl:text>,'</xsl:text>
- <xsl:call-template name="printJSText">
- <xsl:with-param name="string" select="@timeofday_id"/>
- </xsl:call-template>
- <xsl:text>'</xsl:text>
-
- <!-- user(s) -->
- <xsl:text>,'</xsl:text>
- <xsl:value-of select="@filter"/>
- <xsl:text>'</xsl:text>
-
- <!-- priority -->
- <xsl:text>,'</xsl:text>
- <xsl:value-of select="@priority"/>
- <xsl:text>'</xsl:text>
-
- <!-- preferred -->
- <xsl:text>,'</xsl:text>
- <xsl:value-of select="@preferred"/>
- <xsl:text>'</xsl:text>
-
- <xsl:text>)</xsl:text>
- </xsl:template>
-
- </xsl:stylesheet>
-